* lisp/progmodes/compile.el (compilation-parse-errors): Fix typo.
authorGlenn Morris <rgm@gnu.org>
Mon, 7 Jan 2013 01:23:26 +0000 (17:23 -0800)
committerGlenn Morris <rgm@gnu.org>
Mon, 7 Jan 2013 01:23:26 +0000 (17:23 -0800)
lisp/ChangeLog
lisp/progmodes/compile.el

index f99a6f272a8df1b0df878a205abd377aa265dc61..17532a58902e890641cfb0297ea7d2ebb1ea2864 100644 (file)
@@ -1,3 +1,8 @@
+2013-01-07  Glenn Morris  <rgm@gnu.org>
+
+       * progmodes/compile.el (compilation-parse-errors):
+       Fix typo.  (Bug#13369)
+
 2013-01-07  Vitalie Spinu  <spinuvit@gmail.com>  (tiny change)
 
        * comint.el (comint-send-input): Check size of buffer before
index 9fffeaaabe2c575be440d11a1c0a20791023f76b..f383e02bc7fce6e339f3d1474ed4ecb56c98f0b2 100644 (file)
@@ -1280,7 +1280,7 @@ to `compilation-error-regexp-alist' if RULES is nil."
       ;; whether or not omake's own error messages are recognized.
       (cond
        ((not (memq 'omake compilation-error-regexp-alist)) nil)
-       ((string-match "\\`\\([^^]\\|^\\( \\*\\|\\[\\)\\)" pat)
+       ((string-match "\\`\\([^^]\\|\\^\\( \\*\\|\\[\\)\\)" pat)
         nil) ;; Not anchored or anchored but already allows empty spaces.
        (t (setq pat (concat "^ *" (substring pat 1)))))